翻訳と辞書
Words near each other
・ Go Ask Alice
・ Go Ask Alice!
・ Go Ask Malice
・ Go at the 2008 World Mind Sports Games
・ Go at the 2010 Asian Games
・ Go at the 2010 Asian Games – Men's team
・ Go at the 2010 Asian Games – Mixed pair
・ Go at the 2010 Asian Games – Women's team
・ Go at the 2013 Asian Indoor and Martial Arts Games
・ Go Away
・ GNU Multiple Precision Arithmetic Library
・ GNU nano
・ GNU Octave
・ GNU Oleo
・ GNU Paint
GNU parallel
・ GNU Parted
・ GNU Pascal
・ GNU Portable Threads
・ GNU Privacy Guard
・ GNU Project
・ GNU Prolog
・ GNU Radio
・ GNU Radio Companion
・ GNU Readline
・ GNU Savannah
・ GNU Scientific Library
・ GNU Screen
・ GNU Sharutils
・ GNU Shogi


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

GNU parallel : ウィキペディア英語版
GNU parallel

GNU parallel is a command-line driven utility for GNU/Linux or other Unix-like operating systems which allows the user to execute shell scripts in parallel. GNU parallel is free software, written by Ole Tange in Perl. It is available under the terms of GPLv3.〔(【引用サイトリンク】work=GNU.org )
== Usage ==

The most common usage is to replace the shell loop, for example

for x in `cat list` ; do
do_something "$x"
done | process_output

to the form of

cat list | parallel do_something | process_output

where the file list contains arguments for do_something and where process_output may be empty.
Scripts using parallel are often easier to read than scripts using pexec.
The program parallel features also
* grouping of standard output and standard error so the output of the parallel running jobs do not run together;
* retaining the order of output to remain the same order as input;
* dealing nicely with filenames containing special characters such as space, single quote, double quote, ampersand, and UTF-8 encoded characters;
By default, parallel runs as many jobs in parallel as there are CPU cores.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「GNU parallel」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.